summaryrefslogtreecommitdiff
path: root/ui/routes/(app)/ch/[channel]/+page.svelte
blob: 7bd28d9524084a90efd3ef869c16045e61481d01 (plain)
1
2
3
4
5
6
7
8
9
10
<script>
    import { page } from '$app/stores';
    import ActiveChannel from '$lib/components/ActiveChannel.svelte';

    $: channel = $page?.params?.channel;
</script>

<div class="active-channel">
    <ActiveChannel {channel} />
</div>